home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 58 / pcpp58a.iso / extras / quake 3 source / Q3A_ToolSource.exe / Main / GroupBar.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2001-01-02  |  1.4 KB  |  64 lines

  1. // GroupBar.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "Radiant.h"
  6. #include "GroupBar.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CGroupBar dialog
  16.  
  17.  
  18. CGroupBar::CGroupBar(CWnd* pParent /*=NULL*/)
  19.     : CDialogBar()
  20. {
  21.     //{{AFX_DATA_INIT(CGroupBar)
  22.         // NOTE: the ClassWizard will add member initialization here
  23.     //}}AFX_DATA_INIT
  24. }
  25.  
  26.  
  27. void CGroupBar::DoDataExchange(CDataExchange* pDX)
  28. {
  29.     CDialogBar::DoDataExchange(pDX);
  30.     //{{AFX_DATA_MAP(CGroupBar)
  31.     DDX_Control(pDX, IDC_COMBO_GROUPS, m_wndGroupList);
  32.     //}}AFX_DATA_MAP
  33. }
  34.  
  35.  
  36. BEGIN_MESSAGE_MAP(CGroupBar, CDialogBar)
  37.     //{{AFX_MSG_MAP(CGroupBar)
  38.     ON_BN_CLICKED(IDC_BTN_ADDGROUP, OnBtnAddgroup)
  39.     ON_BN_CLICKED(IDC_BTN_LISTGROUPS, OnBtnListgroups)
  40.     ON_BN_CLICKED(IDC_BTN_REMOVEGROUP, OnBtnRemovegroup)
  41.     //}}AFX_MSG_MAP
  42. END_MESSAGE_MAP()
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CGroupBar message handlers
  46.  
  47. void CGroupBar::OnBtnAddgroup() 
  48. {
  49.     // TODO: Add your control notification handler code here
  50.     
  51. }
  52.  
  53. void CGroupBar::OnBtnListgroups() 
  54. {
  55.     // TODO: Add your control notification handler code here
  56.     
  57. }
  58.  
  59. void CGroupBar::OnBtnRemovegroup() 
  60. {
  61.     // TODO: Add your control notification handler code here
  62.     
  63. }
  64.